Upgrade Rails to 8.1 and replace Redis/Sidekiq with Solid*#17
Merged
Conversation
- Update config.load_defaults from 8.0 to 8.1 - Upgrade Puma from 6.x to 7.x - Replace minitest ~> 5.0 with minitest-mock for minitest 6.x - Remove Lint/Syntax cop (no longer valid in rubocop 1.85+) - Replace new_framework_defaults_8_0.rb with 8_1.rb - Fix test assertions for Rails 8.1 behavior changes Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- Replace Sidekiq with Solid Queue (database-backed job processing) - Replace Redis-based Action Cable with Solid Cable - Add Solid Cache for production/staging caching - Add Mission Control Jobs dashboard at /madmin/jobs - Add multi-database config for cache, queue, cable databases - Add bin/ci local CI runner and bin/bundler-audit - Update CI workflow: add bundler-audit, RuboCop cache, remove Redis/Node - Remove bin/render-start-sidekiq.sh (Solid Queue runs in Puma) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
…ails - Replace cssbundling-rails + jsbundling-rails with importmap-rails + tailwindcss-rails - Remove Node/yarn dependency (no more node_modules, package.json, yarn.lock) - Delete esbuild.config.mjs, postcss.config.js, .node-version - Move tailwind.config.js to config/tailwind.config.js - Add config/importmap.rb for JavaScript module imports - Update layouts to use javascript_importmap_tags and tailwind stylesheet - Update render.yaml: remove Redis/Sidekiq, add Solid* databases - Simplify bin/setup and Procfile.dev (no yarn/css/js build steps) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
No longer needed since Solid Queue runs inside Puma. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
No longer needed after switching to importmap-rails and tailwindcss-rails. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
/madmin/jobsbin/cilocal CI runner,bin/bundler-audit, and bundler-audit gembin/render-start-sidekiq.sh(Solid Queue runs inside Puma viaSOLID_QUEUE_IN_PUMA)Test plan
/madmin/jobsSOLID_QUEUE_IN_PUMA=true🤖 Generated with Claude Code